fd06389e55bcc33401e87c926dab9236928422a8,exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/dataflow/persistent/infinispan/BufferedISPNCache.java,AddToListContainer,apply,#,256

Before Change


         {
            // to prevent consistency issue since we don't have the list in the local cache, we are in cluster env
            // and we are in a non local mode, we clear the list in order to enforce other cluster nodes to reload it from the db
            cache.withFlags(Flag.SKIP_REMOTE_LOOKUP).remove(key);
            return;
         }
      }

After Change


            }
            newSet.add(value);

            setCacheLocalMode(Flag.SKIP_REMOTE_LOOKUP, Flag.IGNORE_RETURN_VALUES).put(key, newSet);
         }
         else if (existingObject != null)
         {